home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / comm1 / s2mtr376.lha / SANA2Meter / Source / constdata.h < prev    next >
C/C++ Source or Header  |  1996-04-25  |  680b  |  35 lines

  1. #ifndef _CONSTDATA_H
  2. #define _CONSTDATA_H
  3. /*
  4. ** $VER: constdata.h 1.0 (25 Apr 1996)
  5. **
  6. ** (C) Copyright 1996 Marius Gröger
  7. **     All Rights Reserved
  8. **
  9. ** $HISTORY:
  10. **
  11. ** 25 Mar 1996 : 001.000 :  created
  12. */
  13.  
  14. #include <exec/types.h>
  15.  
  16. #include "sana2meter.h"
  17. #include "compiler.h"
  18.  
  19. IMPORT const ULONG ttmaskflags[];
  20.  
  21. #define NUM_TTWATCHES 5
  22. IMPORT const struct NewWatch ttwatches[NUM_TTWATCHES + 1];
  23.  
  24. #define NUM_STDWATCHES 9
  25. #define NUM_SPECIALSTATS 20
  26. IMPORT const struct NewWatch stdwatches[NUM_STDWATCHES + NUM_SPECIALSTATS + 1];
  27.  
  28. IMPORT const UBYTE DEF_CONSOLE[];
  29. IMPORT const UBYTE EMAIL_AUTHOR[];
  30.  
  31. #define NUM_REFRESHS 11
  32. IMPORT const ULONG intervals[NUM_REFRESHS];
  33.  
  34. #endif
  35.